+Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
+ (G_OS_UNIX/G_OS_WIN32 stuff)
+
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
Do not interpret distant clicks as double-clicks (#116541,
+Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
+ (G_OS_UNIX/G_OS_WIN32 stuff)
+
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
Do not interpret distant clicks as double-clicks (#116541,
+Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
+ (G_OS_UNIX/G_OS_WIN32 stuff)
+
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
Do not interpret distant clicks as double-clicks (#116541,
+Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
+ (G_OS_UNIX/G_OS_WIN32 stuff)
+
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
Do not interpret distant clicks as double-clicks (#116541,
+Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
+ (G_OS_UNIX/G_OS_WIN32 stuff)
+
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
Do not interpret distant clicks as double-clicks (#116541,
#include "gtkfilechooserwidget.h"
#include "gtkfilechooserdefault.h"
#include "gtkfilechooserutils.h"
-#ifdef G_OS_UNIX
+#include "gtktypebuiltins.h"
+
+#if defined (G_OS_UNIX)
#include "gtkfilesystemunix.h"
-#else if defined G_OS_WIN32
+#elif defined (G_OS_WIN32)
#include "gtkfilesystemwin32.h"
#endif
-#include "gtktypebuiltins.h"
struct _GtkFileChooserWidgetPrivate
{
if (!priv->file_system)
{
-#if defined G_OS_UNIX
+#if defined (G_OS_UNIX)
priv->file_system = gtk_file_system_unix_new ();
-#else if defined G_OS_WIN32
+#elif defined (G_OS_WIN32)
priv->file_system = gtk_file_system_win32_new ();
#endif
}